Add Support for Saving Predicted ML Metadata and Raw Output Tensors to SDS Files - #35
Conversation
a5c8afe to
0eb6129
Compare
|
Hi @Jithendar11 , is it necessary for flag If flag With the current implementation, Also, if flag |
|
Hi @MiloradCvjetkovic , Moved the option sds stream during session initialization. |
data into SDS files. Summary of Changes: - Added support to save ML_Result.sds and ML_RawOutput.sds. - ML_Result.sds stores predicted metadata, including class label, class index, and class confidence score. - ML_RawOutput.sds stores raw ML output tensors without any post-processing.
Summary of Changes: - Added runtime SDS flag support to control additional SDS file generation. - Used user-defined SDS flag F to enable additional ML output files. - ML_Result.sds and ML_RawOutput.sds are generated only when flag F is enabled.
5df6d06 to
cde12a3
Compare
|
Removed this check (status == 0) |
Description
Added support for recording predicted ML metadata and raw model output tensors into separate SDS files, with runtime control for enabling the additional ML output streams.
Changes
Added support for generating the following SDS files:
ML_Result.sdsML_RawOutput.sdsAdded runtime SDS flag support to control the generation of these additional SDS files.
F.ML_Result.sdsandML_RawOutput.sdsare generated only when flagFis enabled.Fis not enabled, the existing SDS workflow remains unchanged.